cdc244527b189d32c2220a69d9327c789980ae6d,fabric/fabric-zookeeper/src/main/java/org/fusesource/fabric/zookeeper/bootstrap/ZooKeeperClusterBootstrapImpl.java,ZooKeeperClusterBootstrapImpl,waitForSuccessfulDeploymentOf,#String#number#,126
Before Change
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
} catch (Throwable t) {
FabricException.launderThrowable(t);
}
}
}
After Change
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
} catch (Throwable t) {
throw FabricException.launderThrowable(t);
}
}
}